home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / others / amimacro.zip / SMARTYPE.SMM < prev    next >
INI File  |  1993-02-22  |  14KB  |  1,008 lines

  1. [ver]
  2.     4
  3. [sty]
  4.     _macro.sty
  5. [files]
  6. [charset]
  7.     82
  8.     ANSI (Windows, IBM CP 1252)
  9. [revisions]
  10.     0
  11. [prn]
  12.     PostScript Printer
  13. [port]
  14.     FILE:
  15. [lang]
  16.     1
  17. [desc]
  18.     Typeset characters throughout document
  19.     Lotus WPD Marketing
  20.     Intermediate
  21.     Replace, Type, CurChar$
  22.     noautorun
  23.     730444621
  24.     31
  25.     672426590
  26.     353
  27.     5
  28.     0
  29.     0
  30.     0
  31.     0
  32.     
  33.     
  34.     
  35.     
  36.     
  37.     
  38.     0
  39. [fopts]
  40.     0
  41.     1
  42.     0
  43.     0
  44. [lnopts]
  45.     2
  46.     Body Text
  47.     1
  48. [docopts]
  49.     5
  50.     2
  51. [GramStyle]
  52.     
  53. [l1]
  54.     0
  55. [pg]
  56.     5
  57.     56 0 9 0 0 1 0 216 65535 Standard    65535 0 0    0 0 0 0 0 0 0 65535 0 0 65535 0 0 0 0 0
  58.     115 0 12 0 0 1 0 216 65535 Standard    65535 0 0    0 0 0 0 0 0 0 65535 0 0 65535 0 0 0 0 0
  59.     164 0 28 0 0 0 0 216 65535 Standard    65535 0 0    0 0 0 0 0 0 0 65535 0 0 65535 0 0 0 0 0
  60.     218 0 16 0 0 0 0 216 65535 Standard    65535 0 0    0 0 0 0 0 0 0 65535 0 0 65535 0 0 0 0 0
  61.     224 0 0 1025 0 0 0 216 65535 Standard    65535 0 0    0 0 0 0 0 0 0 65535 0 0 65535 0 0 0 0 0
  62. [edoc]
  63. <:#216,10800>Macro by <+!>Charlie Pappas<-!>
  64.  
  65. <:#216,10800>define IsOKToRun(menuname)    GetInfo(217, 24, %1);
  66.  
  67. <:#216,10800>
  68.  
  69. @Function@<:#216,10800>function typeset()
  70.  
  71. <:#216,10800>result=IsOKToRun(FindReplace)
  72.  
  73. <:#216,10800>if result != 1
  74.  
  75. <:#216,10800>    exit function
  76.  
  77. <:#216,10800>endif
  78.  
  79. <:#216,10800>oncancel endit
  80.  
  81. <:#216,10800>onerror endit
  82.  
  83. <:#216,10800>dim ab(25)
  84.  
  85. <:#216,10800>ab(1)="Mr"
  86.  
  87. <:#216,10800>ab(2)="Mrs"
  88.  
  89. <:#216,10800>ab(3)="Ms"
  90.  
  91. <:#216,10800>ab(4)="Dr"
  92.  
  93. <:#216,10800>ab(5)="al"
  94.  
  95. <:#216,10800>ab(6)="etc"
  96.  
  97. <:#216,10800>ab(7)="pp"
  98.  
  99. <:#216,10800>ab(8)="St"
  100.  
  101. <:#216,10800>ab(9)="Ave"
  102.  
  103. <:#216,10800>ab(10)="vs"
  104.  
  105. <:#216,10800>ab(11)="vol"
  106.  
  107. <:#216,10800>ab(12)="Eds"
  108.  
  109. <:#216,10800>ab(13)="Ed"
  110.  
  111. <:#216,10800>ab(14)="No"
  112.  
  113. <:#216,10800>ab(15)="Pl"
  114.  
  115. <:#216,10800>ab(16)="Rd"
  116.  
  117. <:#216,10800>ab(17)="Rt"
  118.  
  119. <:#216,10800>ab(18)="Terr"
  120.  
  121. <:#216,10800>ab(19)="Blvd"
  122.  
  123. <:#216,10800>ab(20)="Drs"
  124.  
  125. <:#216,10800>ab(21)="cf"
  126.  
  127. <:#216,10800>ab(22)="viz"
  128.  
  129. <:#216,10800>ab(23)="Rev"
  130.  
  131. <:#216,10800>ab(24)="ed"
  132.  
  133. <:#216,10800>ab(25)="viz"
  134.  
  135. <:#216,10800>darkmode(0)
  136.  
  137. <:#216,10800>type("<[>ctrlhome]")
  138.  
  139. <:#216,10800>dblsp=decide("Do you want to double-space after sentences?","")
  140.  
  141. <:#216,10800>If dblsp=0 
  142.  
  143. <:#216,10800>    goto dashes
  144.  
  145. <:#216,10800>Endif
  146.  
  147. @Function@<:#216,10800>DoubleSpaces:
  148.  
  149. <:#216,10800>StatusBarMsg("Double spacing after sentences...")
  150.  
  151. <:#216,10800>While (1)
  152.  
  153. <:#216,10800>    go = replace(0,0,1,".","")
  154.  
  155. <:#216,10800>    if go <<<;>1 
  156.  
  157. <:#216,10800>        break
  158.  
  159. <:#216,10800>    endif
  160.  
  161. <:#216,10800>    type("<[>esc]")
  162.  
  163. <:#216,10800>    sp=curchar$()
  164.  
  165. <:#216,10800>    If sp=""
  166.  
  167. <:#216,10800>        goto skip2end
  168.  
  169. <:#216,10800>    endif
  170.  
  171. <:#216,10800>    sp=asc(sp)
  172.  
  173. <:#216,10800>    if sp=44
  174.  
  175. <:#216,10800>        type("<[>shiftctrlright], ")
  176.  
  177. <:#216,10800>        goto skip2end
  178.  
  179. <:#216,10800>    endif
  180.  
  181. <:#216,10800>    if sp<<<;>32
  182.  
  183. <:#216,10800>        type("<[>left]<[>left]<[>ShiftRight]<[>ShiftRight]<[>ShiftRight]<[>ShiftRight]")
  184.  
  185. <:#216,10800>        egie=curshade$()
  186.  
  187. <:#216,10800>        if egie="e.g." or egie="i.e." or egie="a.m." or egie="p.m."
  188.  
  189. <:#216,10800>            type("<[>right]")
  190.  
  191. <:#216,10800>            goto skip2end
  192.  
  193. <:#216,10800>        endif
  194.  
  195. <:#216,10800>        darkmode(0)
  196.  
  197. <:#432,10800>        UserControl("There is no space following this period.  Make your corrections and click 'RESUME'.")
  198.  
  199. <:#216,10800>        goto skip2end
  200.  
  201. <:#216,10800>    endif
  202.  
  203. <:#216,10800>    type("<[>Right]")
  204.  
  205. <:#216,10800>    let1=curchar$()
  206.  
  207. <:#216,10800>    If let1=""
  208.  
  209. <:#216,10800>        type("<[>backspace]")
  210.  
  211. <:#216,10800>        goto skip2end
  212.  
  213. <:#216,10800>    endif
  214.  
  215. <:#216,10800>    dblsp=asc(let1)
  216.  
  217. <:#216,10800>    If dblsp=32
  218.  
  219. <:#216,10800>        dblsp=1
  220.  
  221. <:#216,10800>    else dblsp=0
  222.  
  223. <:#216,10800>    endif
  224.  
  225. <:#216,10800>    if dblsp=0
  226.  
  227. <:#216,10800>        let=asc(let1)
  228.  
  229. <:#216,10800>        If let<<91
  230.  
  231. <:#216,10800>            cap=1
  232.  
  233. <:#216,10800>        else cap=0
  234.  
  235. <:#216,10800>        endif
  236.  
  237. <:#216,10800>    endif
  238.  
  239. <:#216,10800>    if dblsp=1
  240.  
  241. <:#216,10800>        type("<[>right]")
  242.  
  243. <:#216,10800>        let2=curchar$()
  244.  
  245. <:#216,10800>        If let2=""
  246.  
  247. <:#216,10800>            type("<[>backspace]<[>backspace]")
  248.  
  249. <:#216,10800>            goto skip2end
  250.  
  251. <:#216,10800>        endif
  252.  
  253. <:#216,10800>        let=asc(let2)
  254.  
  255. <:#216,10800>        If let<<91
  256.  
  257. <:#216,10800>            cap=1
  258.  
  259. <:#216,10800>        else cap=0
  260.  
  261. <:#216,10800>        endif
  262.  
  263. <:#216,10800>    endif
  264.  
  265. <:#216,10800>    type("<[>CTRLLeft]")
  266.  
  267. <:#216,10800>    para=curchar$()
  268.  
  269. <:#216,10800>    t=asc(para)
  270.  
  271. <:#216,10800>    If t=41 or t=93 or t=34
  272.  
  273. <:#216,10800>        l=2
  274.  
  275. <:#216,10800>        type("<[>right]<[>right]")
  276.  
  277. <:#216,10800>        goto skip1
  278.  
  279. <:#216,10800>    else type("<[>CTRLSHIFTLeft]")
  280.  
  281. <:#216,10800>    endif
  282.  
  283. <:#216,10800>    wbper=curshade$()
  284.  
  285. <:#216,10800>    type("<[>Esc]<[>CTRLRight]<[>right]")
  286.  
  287. <:#216,10800>    l=len(wbper)
  288.  
  289. <:#216,10800>    if l = 1
  290.  
  291. <:#216,10800>        goto skip0
  292.  
  293. <:#216,10800>    endif
  294.  
  295. <:#216,10800>    for i = 1 to 25
  296.  
  297. <:#216,10800>        if wbper=ab(i)
  298.  
  299. <:#216,10800>            l=1
  300.  
  301. <:#216,10800>            break
  302.  
  303. <:#216,10800>        endif
  304.  
  305. <:#216,10800>        l=2
  306.  
  307. <:#216,10800>    next
  308.  
  309. @Function@<:#216,10800>    Skip0:
  310.  
  311. <:#216,10800>    If l=1 and dblsp=0
  312.  
  313. <:#216,10800>        goto skip2end
  314.  
  315. <:#216,10800>    elseif l=1 and dblsp=1
  316.  
  317. <:#216,10800>        type("<[>Del]")
  318.  
  319. <:#216,10800>        goto skip2end
  320.  
  321. <:#216,10800>    endif
  322.  
  323. @Function@<:#216,10800>    skip1:
  324.  
  325. <:#216,10800>    If l=2 and dblsp=1 and cap =1
  326.  
  327. <:#216,10800>        goto skip2end
  328.  
  329. <:#216,10800>    elseif l=2 and dblsp=1 and cap =0
  330.  
  331. <:#216,10800>        darkmode(0)
  332.  
  333. <:#432,10800>        x=decide("There are two spaces after this period, but the next word is not capitalized.  Do you want to capitalize the next word?")
  334.  
  335. <:#216,10800>        If x=1
  336.  
  337. <:#216,10800>            newlet=ucase$(let2)
  338.  
  339. <:#216,10800>            type("<[>CTRLRight]<[>Del]{newlet}")
  340.  
  341. <:#216,10800>            goto skip2end
  342.  
  343. <:#216,10800>        endif
  344.  
  345. <:#432,10800>        x=decide("There are two spaces after this period, but the next word is not capitalized.  Do you want to delete one of the spaces?")
  346.  
  347. <:#216,10800>        if x=1
  348.  
  349. <:#216,10800>            type("<[>Del]")
  350.  
  351. <:#216,10800>        endif
  352.  
  353. <:#216,10800>        goto skip2end
  354.  
  355. <:#216,10800>    elseif l=2 and dblsp=0 and cap =1
  356.  
  357. <:#216,10800>        type(" ")
  358.  
  359. <:#216,10800>        goto skip2end
  360.  
  361. <:#216,10800>    elseif l=2 and dblsp=0 and cap =0
  362.  
  363. <:#216,10800>        darkmode(0)
  364.  
  365. <:#432,10800>        x=decide("There is only one space after this period, but the next word is not capitalized.  Do you want to capitalize the next word?")
  366.  
  367. <:#216,10800>        If x=1
  368.  
  369. <:#216,10800>            newlet=ucase$(let1)
  370.  
  371. <:#216,10800>            type("<[>CTRLRight]<[>Del]{newlet}")
  372.  
  373. <:#216,10800>        endif
  374.  
  375. <:#216,10800>        goto skip2end
  376.  
  377. <:#216,10800>    Endif
  378.  
  379. @Function@<:#216,10800>    Skip2end:
  380.  
  381. <:#216,10800>    darkmode(0)
  382.  
  383. <:#216,10800>Wend    
  384.  
  385. @Function@<:#216,10800>Dashes:
  386.  
  387. <:#216,10800>StatusBarMsg("Converting em dashes...")
  388.  
  389. <:#216,10800>replace("" "" 1024 "--" "</W>")
  390.  
  391. <:#216,10800>type("<[>ctrlhome]")
  392.  
  393. @Function@<:#216,10800>SingleQuotes:
  394.  
  395. <:#216,10800>StatusBarMsg("Converting single quotes...")
  396.  
  397. <:#216,10800>while (1)
  398.  
  399. <:#216,10800>    go = replace("" "" "" "'" "")
  400.  
  401. <:#216,10800>    if go <<<;> 1
  402.  
  403. <:#216,10800>        break
  404.  
  405. <:#216,10800>    endif
  406.  
  407. <:#216,10800>    type("<[>esc]")
  408.  
  409. <:#216,10800>    if CurChar$() = "'"
  410.  
  411. <:#216,10800>        type("<[>left]<[>shiftright]<[>shiftright]</T>")
  412.  
  413. <:#216,10800>    else
  414.  
  415. <:#216,10800>        if not "" = GetTextBeforeCursor$()
  416.  
  417. <:#216,10800>            type("<[>left]<[>left]")
  418.  
  419. <:#216,10800>        endif
  420.  
  421. <:#216,10800>        if curchar$() = " " or curchar$() = ""
  422.  
  423. <:#216,10800>            if curchar$() <<<;> ""
  424.  
  425. <:#216,10800>                type("<[>right]")
  426.  
  427. <:#216,10800>            endif
  428.  
  429. <:#216,10800>            type("<[>shiftright]")
  430.  
  431. <:#216,10800>            type("</Q>")
  432.  
  433. <:#216,10800>        else
  434.  
  435. <:#216,10800>            type("<[>right]<[>shiftright]")
  436.  
  437. <:#216,10800>            type("</R>")
  438.  
  439. <:#216,10800>        endif
  440.  
  441. <:#216,10800>    endif
  442.  
  443. <:#216,10800>wend
  444.  
  445. <:#216,10800>type("<[>ctrlhome]")
  446.  
  447. @Function@<:#216,10800>DoubleQuotes:
  448.  
  449. <:#216,10800>StatusBarMsg("Converting double quotes...")
  450.  
  451. <:#216,10800>goto jump
  452.  
  453. <:#216,10800>while (1)
  454.  
  455. <:#216,10800>    go = replace("" "" "" """" "")
  456.  
  457. <:#216,10800>    if go <<<;> 1
  458.  
  459. <:#216,10800>        break
  460.  
  461. <:#216,10800>    endif
  462.  
  463. <:#216,10800>    type("<[>esc]")
  464.  
  465. <:#216,10800>    if curchar$() = " "
  466.  
  467. <:#216,10800>        type("<[>shiftleft]</T>")
  468.  
  469. <:#216,10800>    else
  470.  
  471. <:#216,10800>        type("<[>shiftleft]</S>")
  472.  
  473. <:#216,10800>    endif
  474.  
  475. <:#216,10800>wend
  476.  
  477. @Function@<:#216,10800>jump:
  478.  
  479. <:#216,10800>while (1)
  480.  
  481. <:#216,10800>    go = Replace("" "" "" """" "") ' open dquote
  482.  
  483. <:#216,10800>    if go <<<;> 1
  484.  
  485. <:#216,10800>        break
  486.  
  487. <:#216,10800>    endif
  488.  
  489. <:#216,10800>    type("</S>")
  490.  
  491. <:#216,10800>    Replace("" "" "" """" "")
  492.  
  493. <:#216,10800>    type("</T>")
  494.  
  495. <:#216,10800>wend
  496.  
  497. <:#216,10800>StatusBarMsg("")
  498.  
  499. <:#432,10800>message("All Quotes, dashes and apostrophes within file have been converted to typographical equivalent.")
  500.  
  501. @Function@<:#216,10800>endit:
  502.  
  503. <:#216,10800>StatusBarMsg("")
  504.  
  505. <:#216,10800>darkmode(0)
  506.  
  507. <:#216,10800>end function
  508.  
  509. <:#216,10800>
  510.  
  511. >
  512.  
  513. [Embedded]
  514. 00008870
  515. >
  516. [macsum] 1
  517. typeset 0 0 18 3
  518. [macse]
  519. 14 typeset
  520. 0 1313 217 24 451
  521. 13
  522. 8 1
  523. 6 1
  524. 5 1
  525. 18 1
  526. 11 00000081
  527. 6 0
  528. 15
  529. 9
  530. 19 00004633
  531. 20 00004633
  532. 5 25
  533. 21 2 [X]
  534. 5 1
  535. 7 "Mr"
  536. 23 2
  537. 5 2
  538. 7 "Mrs"
  539. 23 2
  540. 5 3
  541. 7 "Ms"
  542. 23 2
  543. 5 4
  544. 7 "Dr"
  545. 23 2
  546. 5 5
  547. 7 "al"
  548. 23 2
  549. 5 6
  550. 7 "etc"
  551. 23 2
  552. 5 7
  553. 7 "pp"
  554. 23 2
  555. 5 8
  556. 7 "St"
  557. 23 2
  558. 5 9
  559. 7 "Ave"
  560. 23 2
  561. 5 10
  562. 7 "vs"
  563. 23 2
  564. 5 11
  565. 7 "vol"
  566. 23 2
  567. 5 12
  568. 7 "Eds"
  569. 23 2
  570. 5 13
  571. 7 "Ed"
  572. 23 2
  573. 5 14
  574. 7 "No"
  575. 23 2
  576. 5 15
  577. 7 "Pl"
  578. 23 2
  579. 5 16
  580. 7 "Rd"
  581. 23 2
  582. 5 17
  583. 7 "Rt"
  584. 23 2
  585. 5 18
  586. 7 "Terr"
  587. 23 2
  588. 5 19
  589. 7 "Blvd"
  590. 23 2
  591. 5 20
  592. 7 "Drs"
  593. 23 2
  594. 5 21
  595. 7 "cf"
  596. 23 2
  597. 5 22
  598. 7 "viz"
  599. 23 2
  600. 5 23
  601. 7 "Rev"
  602. 23 2
  603. 5 24
  604. 7 "ed"
  605. 23 2
  606. 5 25
  607. 7 "viz"
  608. 23 2
  609. 0 292 0
  610. 0 6 "[16420]"
  611. 0 2 "Do you want to double-space after sentences?" ""
  612. 13
  613. 8 3
  614. 6 3
  615. 5 0
  616. 18 0
  617. 11 00000757
  618. 10 00003539
  619. 0 789 "Double spacing after sentences..."
  620. 5 1
  621. 11 00003539
  622. 2 488 1 0 0 1 "." ""
  623. 13
  624. 8 4
  625. 6 4
  626. 5 1
  627. 18 1
  628. 11 00000891
  629. 10 00003539
  630. 0 6 "[27]"
  631. 0 282
  632. 13
  633. 8 5
  634. 6 5
  635. 7 ""
  636. 18 0
  637. 11 00000962
  638. 10 00003517
  639. 0 40 "{5}"
  640. 13
  641. 8 5
  642. 6 5
  643. 5 44
  644. 18 0
  645. 11 00001043
  646. 0 6 "[20519], "
  647. 10 00003517
  648. 6 5
  649. 5 32
  650. 18 1
  651. 11 00001378
  652. 0 6 "[37][37][4135][4135][4135][4135]"
  653. 0 24
  654. 13
  655. 8 6
  656. 6 6
  657. 7 "e.g."
  658. 18 0
  659. 6 6
  660. 7 "i.e."
  661. 18 0
  662. 6 6
  663. 7 "a.m."
  664. 18 0
  665. 6 6
  666. 7 "p.m."
  667. 18 0
  668. 1 2
  669. 1 2
  670. 1 2
  671. 11 00001265
  672. 0 6 "[39]"
  673. 10 00003517
  674. 0 292 0
  675. 0 7 "There is no space following this period.  Make your corrections and click 'RESUME'."
  676. 10 00003517
  677. 0 6 "[39]"
  678. 0 282
  679. 13
  680. 8 7
  681. 6 7
  682. 7 ""
  683. 18 0
  684. 11 00001460
  685. 0 6 "[8]"
  686. 10 00003517
  687. 0 40 "{7}"
  688. 13
  689. 8 3
  690. 6 3
  691. 5 32
  692. 18 0
  693. 11 00001534
  694. 5 1
  695. 8 3
  696. 10 00001544
  697. 5 0
  698. 8 3
  699. 6 3
  700. 5 0
  701. 18 0
  702. 11 00001657
  703. 0 40 "{7}"
  704. 13
  705. 8 8
  706. 6 8
  707. 5 91
  708. 18 5
  709. 11 00001647
  710. 5 1
  711. 8 9
  712. 10 00001657
  713. 5 0
  714. 8 9
  715. 6 3
  716. 5 1
  717. 18 0
  718. 11 00001858
  719. 0 6 "[39]"
  720. 0 282
  721. 13
  722. 8 10
  723. 6 10
  724. 7 ""
  725. 18 0
  726. 11 00001773
  727. 0 6 "[8][8]"
  728. 10 00003517
  729. 0 40 "{10}"
  730. 13
  731. 8 8
  732. 6 8
  733. 5 91
  734. 18 5
  735. 11 00001848
  736. 5 1
  737. 8 9
  738. 10 00001858
  739. 5 0
  740. 8 9
  741. 0 6 "[16421]"
  742. 0 282
  743. 13
  744. 8 11
  745. 0 40 "{11}"
  746. 13
  747. 8 12
  748. 6 12
  749. 5 41
  750. 18 0
  751. 6 12
  752. 5 93
  753. 18 0
  754. 6 12
  755. 5 34
  756. 18 0
  757. 1 2
  758. 1 2
  759. 11 00002043
  760. 5 2
  761. 8 13
  762. 0 6 "[39][39]"
  763. 10 00002491
  764. 10 00002058
  765. 0 6 "[20517]"
  766. 0 24
  767. 13
  768. 8 14
  769. 0 6 "[27][16423][39]"
  770. 0 14 "{14}"
  771. 13
  772. 8 13
  773. 6 13
  774. 5 1
  775. 18 0
  776. 11 00002163
  777. 10 00002338
  778. 5 1
  779. 8 15
  780. 5 25
  781. 6 15
  782. 18 2
  783. 12 00002253
  784. 10 00002338
  785. 5 1
  786. 6 15
  787. 3 0
  788. 8 15
  789. 10 00002174
  790. 6 14
  791. 6 15
  792. 22 2
  793. 18 0
  794. 11 00002314
  795. 5 1
  796. 8 13
  797. 10 00002338
  798. 5 2
  799. 8 13
  800. 10 00002218
  801. 6 13
  802. 5 1
  803. 18 0
  804. 6 3
  805. 5 0
  806. 18 0
  807. 1 1
  808. 11 00002415
  809. 10 00003517
  810. 10 00002491
  811. 6 13
  812. 5 1
  813. 18 0
  814. 6 3
  815. 5 1
  816. 18 0
  817. 1 1
  818. 11 00002491
  819. 0 6 "[46]"
  820. 10 00003517
  821. 6 13
  822. 5 2
  823. 18 0
  824. 6 3
  825. 5 1
  826. 18 0
  827. 6 9
  828. 5 1
  829. 18 0
  830. 1 1
  831. 1 1
  832. 11 00002589
  833. 10 00003517
  834. 10 00003517
  835. 6 13
  836. 5 2
  837. 18 0
  838. 6 3
  839. 5 1
  840. 18 0
  841. 6 9
  842. 5 0
  843. 18 0
  844. 1 1
  845. 1 1
  846. 11 00003101
  847. 0 292 0
  848. 0 2 "There are two spaces after this period, but the next word is not capitalized.  Do you want to capitalize the next word?"
  849. 13
  850. 8 16
  851. 6 16
  852. 5 1
  853. 18 0
  854. 11 00002896
  855. 0 18 "{10}"
  856. 13
  857. 8 17
  858. 0 6 "[16423][46]{17}"
  859. 10 00003517
  860. 0 2 "There are two spaces after this period, but the next word is not capitalized.  Do you want to delete one of the spaces?"
  861. 13
  862. 8 16
  863. 6 16
  864. 5 1
  865. 18 0
  866. 11 00003075
  867. 0 6 "[46]"
  868. 10 00003517
  869. 10 00003517
  870. 6 13
  871. 5 2
  872. 18 0
  873. 6 3
  874. 5 0
  875. 18 0
  876. 6 9
  877. 5 1
  878. 18 0
  879. 1 1
  880. 1 1
  881. 11 00003208
  882. 0 6 " "
  883. 10 00003517
  884. 10 00003517
  885. 6 13
  886. 5 2
  887. 18 0
  888. 6 3
  889. 5 0
  890. 18 0
  891. 6 9
  892. 5 0
  893. 18 0
  894. 1 1
  895. 1 1
  896. 11 00003517
  897. 0 292 0
  898. 0 2 "There is only one space after this period, but the next word is not capitalized.  Do you want to capitalize the next word?"
  899. 13
  900. 8 16
  901. 6 16
  902. 5 1
  903. 18 0
  904. 11 00003504
  905. 0 18 "{7}"
  906. 13
  907. 8 17
  908. 0 6 "[16423][46]{17}"
  909. 10 00003517
  910. 0 292 0
  911. 10 00000800
  912. 0 789 "Converting em dashes..."
  913. 2 488 1 "" "" 1024 "--" "</W>"
  914. 0 6 "[16420]"
  915. 0 789 "Converting single quotes..."
  916. 5 1
  917. 11 00004091
  918. 2 488 1 "" "" "" "'" ""
  919. 13
  920. 8 4
  921. 6 4
  922. 5 1
  923. 18 1
  924. 11 00003750
  925. 10 00004091
  926. 0 6 "[27]"
  927. 0 282
  928. 13
  929. 7 "'"
  930. 18 0
  931. 11 00003840
  932. 0 6 "[37][4135][4135]</T>"
  933. 10 00004078
  934. 7 ""
  935. 0 37
  936. 13
  937. 18 0
  938. 1 3
  939. 11 00003896
  940. 0 6 "[37][37]"
  941. 0 282
  942. 13
  943. 7 " "
  944. 18 0
  945. 0 282
  946. 13
  947. 7 ""
  948. 18 0
  949. 1 2
  950. 11 00004048
  951. 0 282
  952. 13
  953. 7 ""
  954. 18 1
  955. 11 00004009
  956. 0 6 "[39]"
  957. 0 6 "[4135]"
  958. 0 6 "</Q>"
  959. 10 00004078
  960. 0 6 "[39][4135]"
  961. 0 6 "</R>"
  962. 10 00003656
  963. 0 6 "[16420]"
  964. 0 789 "Converting double quotes..."
  965. 10 00004362
  966. 5 1
  967. 11 00004362
  968. 2 488 1 "" "" "" """" ""
  969. 13
  970. 8 4
  971. 6 4
  972. 5 1
  973. 18 1
  974. 11 00004251
  975. 10 00004362
  976. 0 6 "[27]"
  977. 0 282
  978. 13
  979. 7 " "
  980. 18 0
  981. 11 00004331
  982. 0 6 "[4133]</T>"
  983. 10 00004349
  984. 0 6 "[4133]</S>"
  985. 10 00004156
  986. 5 1
  987. 11 00004520
  988. 2 488 1 "" "" "" """" ""
  989. 13
  990. 8 4
  991. 6 4
  992. 5 1
  993. 18 1
  994. 11 00004457
  995. 10 00004520
  996. 0 6 "</S>"
  997. 2 488 1 "" "" "" """" ""
  998. 0 6 "</T>"
  999. 10 00004362
  1000. 0 789 ""
  1001. 0 3 "All Quotes, dashes and apostrophes within file have been converted to typographical equivalent."
  1002. 0 789 ""
  1003. 0 292 0
  1004. 6 0
  1005. 15
  1006. 9
  1007. 00008895
  1008.